home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 26
/
Cream of the Crop 26.iso
/
os2
/
plnk081.zip
/
pilot-link.0.8.1
/
Java
/
Pdapilot
/
DlpException.java
< prev
next >
Wrap
Text File
|
1997-08-01
|
345b
|
17 lines
package Pdapilot;
public class DlpException extends Exception {
public int code;
DlpException() { super(); }
DlpException(String s) {
super(s);
}
DlpException(int code) {
super(calls.dlp_strerror(code));
this.code = code;
}
public static void kickWillyScuggins(int code) throws DlpException {
throw new DlpException(code);
}
}